home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / CONFIG.AX < prev    next >
Text File  |  1990-05-29  |  2KB  |  44 lines

  1. /* Software options */
  2. #undef    IP        1    /* Include TCP/IP code */
  3. #undef    SERVERS        1    /* Include TCP servers */
  4. #undef    FTPC        1    /* Include FTP client */
  5. #undef    SMTPC        1    /* Include SMTP client */
  6. #define TRACE        1    /* Include packet tracing code */
  7. #define MHEARD        1    /* Include station monitoring code */
  8. #if (!defined(MSDOS) || defined(LARGEDATA))
  9. # undef     RCMD        1    /* Include RCMD server */
  10. # define TNC2        1    /* Include TNC2 emulator */
  11. #endif
  12. #undef    SCREEN        1    /* Include SCREEN Ansi terminal emulator */
  13. #define NSESSIONS    10    /* Number of interactive clients */
  14.  
  15. /* Hardware configuration */
  16. #define SLIP        1    /* Serial Line IP subnet code */
  17. #define KISS        1    /* KISS TNC code */
  18. #undef    HAPN        1    /* Hamilton Area Packet Network driver code */
  19. #undef    EAGLE        1    /* Eagle card driver */
  20. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  21. #define SCC        1    /* Z8530 SCC driver code */
  22. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  23. #if (!defined(MSDOS) || defined(LARGEDATA))
  24. # undef  NRS        1    /* NET/ROM async interface */
  25. # undef  NETROM        1    /* NET/ROM network support */
  26. #endif
  27.  
  28. #if (defined(NRS))
  29. # undef     NETROM
  30. # define NETROM        1    /* NRS implies NETROM */
  31. #endif
  32.  
  33. #if (defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100)||defined(SCC))
  34. # undef     AX25
  35. # define AX25        1    /* AX.25 subnet code */
  36. #endif
  37.  
  38. /* KISS TNC, SLIP, NRS or PACKET implies ASY */
  39. #if (defined(KISS) || defined(PACKET) || defined(NRS) || defined(SLIP))
  40. # undef     ASY
  41. # define ASY        1    /* Asynch driver code */
  42. #endif
  43.  
  44.